-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OCM-10315 : Add instance addition script #49
Conversation
cmd/ocm-support/root.go
Outdated
@@ -17,6 +17,7 @@ limitations under the License. | |||
package main | |||
|
|||
import ( | |||
"github.com/openshift-online/ocm-support-cli/cmd/ocm-support/add" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: order of imports
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
@tirthct can you add an example in the README about how to use this? |
As discussed, we will create a new PR for documentation once the script it ready |
|
||
func init() { | ||
flags := Cmd.Flags() | ||
flags.BoolVar(&args.dryRun, "dry-run", true, "When true, don't actually take any actions, just print the actions that would be taken") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This message is quite generic, can we improve that/make more clear?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed
LGTM |
Changed